iMakePostable is created to assist developers to convert some predefined characters to HTML entities. It is inspired by the Postable.


Great for:
Displaying any of your code inside your page - see here.


Example:
<a href='test'>Test</a> will become &lt;a href=&#039;test&#039;&gt;Test&lt;/a&gt;


The predefined characters are:

  • & (ampersand) becomes &amp;
  • " (double quote) becomes &quot;
  • ' (single quote) becomes &#039;
  • < (less than) becomes &lt;
  • > (greater than) becomes &gt;
about